Cabecera: header

/*(A=estilos de linea, B=id o caja, C=clases, D=etiquetas)*/
body { /* (0,0,0,1) */
color: white;
}
h1, header { /* (0,0,0,2) */
color: red;
}
* { /* (0,0,0,1) */
color: black;
}
#caja header, h1 { /* (0,1,0,2) */
color: gray;
}
#caja .cabecera h1 { /* (0,1,1,1) MAYOR PRIORIDAD*/
color: darkblue;
}